home *** CD-ROM | disk | FTP | other *** search
/ VRML 2.0 Sourcebook (2nd Edition) / VRML 2.0 Sourcebook CD [md5 fed90f4f9c39d5a60d477058775c7e21].iso / book / mac / ch18 / 18fig20b.wrl < prev    next >
Text File  |  1996-09-23  |  715b  |  36 lines

  1. #VRML V2.0 utf8
  2. # The VRML 2.0 Sourcebook
  3. # Copyright [1997] By
  4. # Andrea L. Ames, David R. Nadeau, and John L. Moreland
  5. Shape {
  6.     appearance Appearance {
  7.         material Material { }
  8.         texture ImageTexture {
  9.             url "pizza.jpg"
  10.         }
  11.     }
  12.     geometry IndexedFaceSet {
  13.         coord Coordinate {
  14.             point [
  15.             # Slice, pulled out of pizza
  16.                 0.50 0.0 0.50,   0.88 0.0 1.42,
  17.                 1.06 0.0 1.33,   1.21 0.0 1.21,
  18.                 1.33 0.0 1.06,   1.42 0.0 0.88
  19.             ]
  20.         }
  21.         coordIndex [ 0, 1, 2, 3, 4, 5 ]
  22.         texCoord TextureCoordinate {
  23.             point [
  24.             # Center point of pizza image
  25.                 0.50 0.50,
  26.             # Slice perimeter
  27.                 0.68 0.07,  0.76 0.11,
  28.                 0.83 0.17,  0.89 0.24,
  29.                 0.93 0.32,
  30.             ]
  31.         }
  32.         texCoordIndex [ 0, 1, 2, 3, 4, 5, ]
  33.         solid FALSE
  34.     }
  35. }
  36.